Skip to main content

Offset

The 'offset' parameter controls pagination by specifying how many results to skip before returning data.

Behavior: offset is a multiplayer of the 'limit' parameter. If limit is set to 100, and offset is set to 1, then results will include elements 101-200. If limit is set to 1000, and offset is set to 5, then results include elements 5001-6000.

Valid Values: any positive integer is valid, but results will return an empty set if offset x limit is greater than the total amount of elements.

Usage: curl -G "http://127.0.0.1:8090/mb/v1/elements" --data-urlencode "offset=<integer>"

Example: offset=1

Example: offset=10